Clover coverage report - bexee - 0.1
Coverage timestamp: Do Dez 16 2004 13:24:06 CET
file stats: LOC: 32   Methods: 3
NCLOC: 11   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
DAOException.java - 33.3% 33.3% 33.3%
coverage coverage
 1   
 /*
 2   
  * $Id: DAOException.java,v 1.1 2004/12/15 14:18:09 patforna Exp $
 3   
  *
 4   
  * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
 5   
  * Berne University of Applied Sciences
 6   
  * School of Engineering and Information Technology
 7   
  * All rights reserved.
 8   
  */
 9   
 package bexee.dao;
 10   
 
 11   
 /**
 12   
  * This class is used to indicate that something went wrong trying to insert,
 13   
  * find, update etc. in a DAO class.
 14   
  * 
 15   
  * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:09 $
 16   
  * @author Patric Fornasier
 17   
  * @author Pawel Kowalski
 18   
  */
 19   
 public class DAOException extends Exception {
 20   
 
 21  4
     public DAOException(String message) {
 22  4
         super(message);
 23   
     }
 24   
 
 25  0
     public DAOException(String message, Throwable cause) {
 26  0
         super(message, cause);
 27   
     }
 28   
 
 29  0
     public DAOException(Throwable cause) {
 30  0
         super(cause);
 31   
     }
 32   
 }